@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.supplier.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.supplier.fields.name_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.supplier.fields.address_helper') }}
@if($errors->has('state_id'))
{{ $errors->first('state_id') }}
@endif {{ trans('cruds.supplier.fields.state_helper') }}
@if($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif {{ trans('cruds.supplier.fields.city_helper') }}
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif {{ trans('cruds.supplier.fields.phone_number_helper') }}
@if($errors->has('contact_person'))
{{ $errors->first('contact_person') }}
@endif {{ trans('cruds.supplier.fields.contact_person_helper') }}
@if($errors->has('remark'))
{{ $errors->first('remark') }}
@endif {{ trans('cruds.supplier.fields.remark_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.supplier.fields.status_helper') }}
@endsection @section('scripts') @endsection