@extends('layouts.dash'.($frame?'_pop':''))
@section('title') Creancier @stop
@section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@else
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($creancier, 'PUT', url('creanciers/' . $creancier->id))->open() }}
@include("tiers.creanciers.content")
{{ html()->closeModelForm() }}
@endif
@stop
@section('scripts0')
@stop