@extends('layouts.app') @section('title','Profile Edit') @section('content')
Profile Edit
USER INFORMATION
@csrf
{{ $errors->first('name') }}
{{ $errors->first('name_bn') }}
{{ $errors->first('email') }}
{{ $errors->first('mobile') }}
{{ $errors->first('avatar') }}

Name : {{ $profile->name }}

Name (Bangla) {{ $profile->name_bn }}
Email {{ $profile->email }}
Mobile Number {{ $profile->mobile }}
Role {{ $profile->role->name }}
Join Date {{ $profile->created_at->format('d M Y') }}
Profile Status @if ($profile->status == 'Active')

Active

@else

Deactive

@endif
@endsection