@extends('template.admin') @section('container')

Profile

{!! Form::model($user, ['route' => 'profile.update']) !!}

Update Profile

Update your profile information

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::text('full_name', old('full_name'), ['class' => 'form-control']) !!}
{!! Form::email('email', old('email'), ['class' => 'form-control']) !!}
{!! Form::close() !!}
@stop