@extends('layouts.app') @section('content')
Edit client
@role('admin') {{ Form::open([ 'route' => ['users.send-password-reset-link', $client->user], 'onsubmit' => 'return confirm("Are you sure you want to reset this user\'s password")' ]) }} {{ Form::close() }} @endrole
{{ Form::model($client, [ 'route' => ['clients.update', $client->id], 'method' => 'PUT', 'id' => 'clients_form' ]) }} @include('clients.form') {{ Form::close() }}
@endsection @push('scripts') @endpush