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

Account/Account Information

Account Information
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ csrf_field() }} @php $admin_user = auth()->guard('admin')->user(); @endphp
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('contact_number')) {{ $errors->first('contact_number') }} @endif
Cancel
@endsection @section('scripts') @include('admin.account_settings.scripts.index') @endsection