@extends('backend.layouts.app') @section('title', __('labels.backend.reasons.title').' | '.app_name()) @push('after-styles') @endpush @section('content') {!! Form::model($reason, ['method' => 'PUT', 'route' => ['admin.reasons.update', $reason->id], 'files' => true,]) !!}

@lang('labels.backend.reasons.edit')

{!! Form::label('title', trans('labels.backend.reasons.fields.title').' *', ['class' => 'control-label']) !!} {!! Form::text('title', old('title'), ['class' => 'form-control', 'placeholder' => 'Enter Category Name', 'required' => false]) !!}
{!! Form::label('icon', trans('labels.backend.reasons.fields.icon'), ['class' => 'control-label d-block']) !!}
{!! Form::label('content', trans('labels.backend.reasons.fields.content').' *', ['class' => 'control-label']) !!} {!! Form::textarea('content', old('content'), ['class' => 'form-control', 'placeholder' => trans('labels.backend.reasons.fields.content'), 'required' => false]) !!}
{!! Form::submit(trans('strings.backend.general.app_save'), ['class' => 'btn mt-auto btn-danger']) !!}
{{ html()->form()->close() }} @endsection @push('after-scripts') @endpush