@extends('dashboard.layout.layout') @section('content')
{!! Form::model(auth()->user(),['action' => 'Dashboard\ProfileController@store' , 'method' => 'POST' , 'files' => true ]) !!}
profile image
{{-- --}}
{{--

Allowed JPG, GIF or PNG. Max size of 800kB

--}}

{!! Form::text('fullname', null , ['class' => 'form-control' , 'placeholder' => trans('dashboard.user.fullname')]) !!}
{!! Form::email('email', null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.general.email')]) !!}
{!! Form::text('phone', null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.general.phone')]) !!}
{{--
{!! Form::select("country_id",$countries, null, ['class' => 'form-control select-search' , 'data-placeholder' => trans('dashboard.country.nationality')]) !!}
{!! Form::select("city_id",$cities, null, ['class' => 'form-control select-search' , 'data-placeholder' => trans('dashboard.city.city')]) !!}
--}}
{!! Form::close() !!}
@endsection @section('current',auth()->user()->fullname)