@extends('front.layout-ref') @section('content')

Profile

@include('front.my-account.tabs')

Edit your details:

@if(\Session::has('error'))
  • {!! \Session::get('error') !!}
  • @endif @if(\Session::has('success'))
  • {!! \Session::get('success') !!}
  • @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif
    {{ csrf_field() }} @if(Auth::user()->profile_image)
    profile_image )}}" alt="Profile Image">

    @endif
    @endsection @section('custom-script') @endsection