@extends('layouts.agent') @section('content')
@include('partials.agent.profile.nav')
{{ trans('global.my_profile') }}
@csrf
{{ trans('cruds.agent.fields.name') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif

{{ trans('cruds.agent.fields.email') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif

{{--
{{ trans('cruds.agent.fields.phone') }}
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif

--}}
{{ trans('cruds.agent.fields.ic_number') }}
@if($errors->has('ic_number'))
{{ $errors->first('ic_number') }}
@endif

{{--
{{ trans('cruds.agent.fields.dob') }}
@if($errors->has('dob'))
{{ $errors->first('dob') }}
@endif

--}} {{--
{{ trans('cruds.agent.fields.shipping_address') }}
@if($errors->has('shipping_address'))
{{ $errors->first('shipping_address') }}
@endif

{{ trans('cruds.agent.fields.state') }}
@if($errors->has('state_id'))
{{ $errors->first('state_id') }}
@endif

{{ trans('cruds.agent.fields.city') }}
@if($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif

--}}
{{ trans('cruds.agent.fields.company_sign') }}
Accepted files : PDF, JPG, PNG (2MB file size is maximum)
@if(empty(auth()->user()->upload_company_sign_path)) Image preview... @else {{ auth()->user()->upload_company_sign_path }} @endif
{{ trans('global.back') }}
@endsection @section('scripts') @endsection