@extends('layouts.master')
@section('title') Consultation 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' => '', 'method' => 'GET', 'class' => 'form-horizontal']) !!}
{!! Form::close() !!}
@stop