@extends('layouts.dash'.($frame?'_pop':''))
@section('title') Imputation @stop
@section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@else
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->form('POST', url('/imputations'))->open() }}
@if($mandat->type2)
@include("mandatements.imputations.content_new")
@else
@include("mandatements.imputations.content")
@endif
{{ html()->form()->close() }}
@endif
@stop