@section('title', $title) @section('description', $description) @extends('layout.app') @section('content')

{{ trans('menu.customer-add-new') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
@if ($errors->has('profession'))

{{ $errors->first('profession') }}

@endif
@if ($errors->has('gender'))

{{ $errors->first('gender') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection