@extends('admin.master') @section('content-header', $page_header) @section('content')

{{ $page_header }}

{{ csrf_field() }} {{ method_field('PATCH') }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('mobileno')) {{ $errors->first('mobileno') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
Change Password
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
...
...

{{ $record->name }}
{{ $record->username }}

{{ $record->email }}

@push('script') @endpush @endsection