@extends('admin.layouts.master') @section('title', 'Edit Reason') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Edit Contact Form Reason') }}
{{ __("Back")}}
{{ csrf_field() }} {{method_field('PATCH')}}
{{ __('Reason') }}
*
@error('reason')
{{ $message }}
@enderror
{{ __('Status') }} :
status == '1' ? 'checked' : '' }} />
{{ __("Reset")}}
{{ __("Update")}}
@endsection @section('script') @endsection