@extends('layouts.agent') @section('content')
{{ csrf_field() }}

{{ trans('panel.site_title') }}

{{ trans('global.register') }}

@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('ic_number'))
{{ $errors->first('ic_number') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if($errors->has('gender'))
{{ $errors->first('gender') }}
@endif
@if($errors->has('civil_status'))
{{ $errors->first('civil_status') }}
@endif
@if($errors->has('contact_number'))
{{ $errors->first('contact_number') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('education_level'))
{{ $errors->first('education_level') }}
@endif
{{--
@if($errors->has('education_level_answer'))
{{ $errors->first('education_level_answer') }}
@endif
--}}
@if($errors->has('area_cities_cover'))
{{ $errors->first('area_cities_cover') }}
@endif
@if($errors->has('answer_question_1'))
{{ $errors->first('answer_question_1') }}
@endif
@if($errors->has('upload_ic'))
{{ $errors->first('upload_ic') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection