@extends("layouts.master") @section('content') @if(!empty(@$data)) {!! Form::model($data, ['method' => 'PATCH','route' => ['lost_reasons.update', $data->id],'class'=>'form-submit']) !!} @else {!! Form::open(['route' => 'lost_reasons.store', 'method' => 'POST','class'=>'form-submit']) !!} @endif @section("button_submit")
{{ __('application.Discard') }}
@endsection
{{--
--}}
@if(!empty(@$data))

{{ __('application.Edit') }} {{ __('application.lost_reasons') }}

@else

{{ __('application.Create') }} {{ __('application.lost_reasons') }}

@endif
{{--
--}}

{{ __('application.lost_reasons') }}: {!! Form::textarea('description',null, ['placeholder' => __('application.Description'), 'class' => 'form-control','rows'=>'3','required']) !!}
{!! Form::close() !!} @endsection {{-- include('stock.purchase.js') --}} @section('js') @stop