@extends('layouts.master')
@section('title') Mise à jour d'un Creancier @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
Mise à jour du Creancier {!! str_pad($creancier->id, 6, "0", STR_PAD_LEFT) !!}
{!! Form::model($creancier, ['creancier' => 'form'
, 'url' => '/tiers/creanciers/' . $creancier->id, 'method' => 'PUT', 'class' => 'form-horizontal']) !!}
{!! Form::hidden('mode_frame',(isset($mandat)?true:false),['id'=>'mode_frame']); !!}
{!! Form::submit('Enregistrer les modifications', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop