@extends('layouts.admin') @section('title', 'Profile') @section('breadcrumb') @endsection @section('content')

Personal Info

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

Update Password

@csrf
@if ($errors->has('c_password')) {{ $errors->first('c_password') }} @elseif(Session::has('error')) {{ Session::get('error')}} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection @section('scripts') @endsection