@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.buyer.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.buyer.fields.name_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.buyer.fields.address_helper') }}
@if($errors->has('province'))
{{ $errors->first('province') }}
@endif {{ trans('cruds.buyer.fields.province_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.buyer.fields.city_helper') }}
@if($errors->has('district'))
{{ $errors->first('district') }}
@endif {{ trans('cruds.buyer.fields.district_helper') }}
@endsection