@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.settlement.title_singular') }}
@csrf
@if($errors->has('filename'))
{{ $errors->first('filename') }}
@endif {{ trans('cruds.settlement.fields.filename_helper') }}
@if($errors->has('total_amount'))
{{ $errors->first('total_amount') }}
@endif {{ trans('cruds.settlement.fields.total_amount_helper') }}
@if($errors->has('merchant_id'))
{{ $errors->first('merchant_id') }}
@endif {{ trans('cruds.settlement.fields.merchant_id_helper') }}
@if($errors->has('datetime'))
{{ $errors->first('datetime') }}
@endif {{ trans('cruds.settlement.fields.datetime_helper') }}
@if($errors->has('contents'))
{{ $errors->first('contents') }}
@endif {{ trans('cruds.settlement.fields.contents_helper') }}
@endsection