@extends('layouts.layout') @section('one_page_js') @endsection @section('one_page_css') @endsection @section('content')

{{ __('Account Setting Title') }}

@csrf
@if ($errors->has('name')) {{ Session::flash('error',$errors->first('name')) }} @endif
@if ($errors->has('email')) {{ Session::flash('error',$errors->first('email')) }} @endif
{{ __('Max Dimension: 200 x 200, Max Size: 100kb, Allowed format: png') }} {{ __('Leave Blank For Remain Unchanged') }}
@if ($errors->has('photo'))
{{ $errors->first('photo') }}
@endif
@if ($errors->has('phone')) {{ Session::flash('error',$errors->first('phone')) }} @endif
@if ($errors->has('address')) {{ Session::flash('error',$errors->first('address')) }} @endif

@endsection