@extends('layouts.admin') @section('content')

{{ __('Add Organization') }}

@csrf
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('professional_title')) {{ $errors->first('professional_title') }} @endif
@if ($errors->has('area_code')) {{ $errors->first('area_code') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('postal_code')) {{ $errors->first('postal_code') }} @endif
@if ($errors->has('about_me')) {{ $errors->first('about_me') }} @endif

{{__('Image')}}

@if ($errors->has('image')) {{ $errors->first('image') }} @endif

{{ __('Accepted Image Files') }}: JPEG, JPG, PNG
{{ __('Accepted Size') }}: 300 x 300 (1MB)

@endsection @push('style') @endpush @push('script') @endpush