@extends('layouts.public_layout') @section('title', $title) @section('content')

{{ $title }}


@if (strlen($msg) > 0) @endif
@csrf
@error('first_name') {{ $errors->first('first_name') }} @enderror
@error('middle_name') {{ $errors->first('middle_name') }} @enderror
@error('last_name') {{ $errors->first('last_name') }} @enderror
@error('email') {{ $errors->first('email') }} @enderror
@error('designation') {{ $errors->first('designation') }} @enderror
@error('username') {{ $errors->first('username') }} @enderror
Leave password empty if unchanged.
@error('password') {{ $errors->first('password') }} @enderror
@error('password_confirmation') {{ $errors->first('password_confirmation') }} @enderror

@endsection