@extends('layouts.master')
@section('title') Mise à jour d'un Compte @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
Compte {!! $plan->numcpt !!}
{!! Form::model($plan, ['plan' => 'form', 'url' => '/compta/plan/' . $plan->id
, 'class' => 'form-horizontal', 'method' => 'PUT']) !!}
{!! Form::submit('Enregistrer', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop