@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.suplier.title_singular') }}
@csrf
@if($errors->has('suplier'))
{{ $errors->first('suplier') }}
@endif {{ trans('cruds.suplier.fields.suplier_helper') }}
@if($errors->has('mobile_no'))
{{ $errors->first('mobile_no') }}
@endif {{ trans('cruds.suplier.fields.mobile_no_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.suplier.fields.email_helper') }}
@if($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.suplier.fields.address_helper') }}
@endsection