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

Add New Manager

{{ csrf_field() }}

First Name

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

Last Name

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

E-Mail Address

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

Phone number

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

Type


Password

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

Confirm Password

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