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

Profile

@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif
@endsection