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

My profile

@if(session()->has('message'))
{{ session()->get('message') }}
@endif

Update personal detail

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('company')) {{ $errors->first('company') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('address_2')) {{ $errors->first('address_2') }} @endif
@if ($errors->has('zipcode')) {{ $errors->first('zipcode') }} @endif
@endsection