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

@include('slices.frontend.right_sidebar')
@endsection @section("pageBottomJs") @stop