@extends('admin.layout.app') @section('title','Profile') @push('headerscript') @endpush @section('content')

Update Profile

{!! Form::open(['route' => ['profileUpdate', $user->id], 'method' => 'put','autocomplete'=>'off', 'files'=>true]) !!}
{!! Form::close() !!}
{!! Form::open(['route' => ['profileUpdate', $user->id], 'method' => 'put','autocomplete'=>'off', 'files'=>true]) !!}
{{$errors->first('old_password')}}
{{$errors->first('password')}}
{{$errors->first('password_confirmation')}}
{!! Form::close() !!}
@endsection