@extends('layouts.admin') @section('content')
{{ trans('global.add') }} {{ trans('cruds.vat.title') }}
@csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif {{ trans('cruds.vat.fields.title_helper') }}
@if($errors->has('value'))
{{ $errors->first('value') }}
@endif {{ trans('cruds.vat.fields.value_helper') }}
@if($errors->has('effective_from'))
{{ $errors->first('effective_from') }}
@endif {{ trans('cruds.vat.fields.eff_from_helper') }}
@if($errors->has('remarks'))
{{ $errors->first('remarks') }}
@endif {{ trans('cruds.vat.fields.remarks_helper') }}
@endsection