@extends('admin.layouts.app') @section('content')
New Agent
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{--
@if($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
--}}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
{{--
@if($errors->has('whatsapp'))
{{ $errors->first('whatsapp') }}
@endif
--}}
@if($errors->has('speaks'))
{{ $errors->first('speaks') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif
{{--
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
--}}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif {{-- [.png, .jpg, .jpeg files only, Max size: 2MB] --}}
Back
@endsection @push('scripts_footer') @include('admin.misc.scripts.dropzone_agent_image') @include('admin.agents.create.script') @endpush