@extends('admin.layout.main') @section('content')

@if(isset($data)) Edit @else Add @endif Employee User Management

@csrf @if(isset($data)) @endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('address_2'))
{{ $errors->first('address_2') }}
@endif
@if ($errors->has('address_3'))
{{ $errors->first('address_3') }}
@endif
@if ($errors->has('phonecode'))
{{ $errors->first('phonecode') }}
@endif
@if ($errors->has('phonecode')) @elseif ($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
@if ($errors->has('email_address'))
{{ $errors->first('email_address') }}
@endif
@if ($errors->has('logo_image'))
{{ $errors->first('logo_image') }}
@endif

Allow type: jpeg, png, jpg.

@if($logo_image_url != '') @endif
@if ($errors->has('website'))
{{ $errors->first('website') }}
@endif
@endsection @section('js') @endsection