@extends('layouts.frontend') @section('title', 'User Profile') @section('content')
My Profile
@include('flash::message')
{!! csrf_field() !!}
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if($user_data->profile_pic) @endif

@include('slices.frontend.right_sidebar')
@endsection