@extends('layouts.master') @section('css') @toastr_css @section('title') {{ trans('Statment_trans.statment_Edit') }} @stop @endsection @section('page-header')

{{ trans('Statment_trans.statment_Edit') }}

@endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{!! Form::model($statment, ['method' => 'PATCH','files' => 'ture','route' => ['statments.update', $statment->id]]) !!} @csrf


@endsection @section('js') @toastr_js @toastr_render @endsection