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

{{ trans('Record_trans.record_Edit') }}

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

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


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