@extends('admin.layouts.master') @section('title', 'Edit Refund Request') @section('css') @endsection @section('content')

{{ __('Edit Refund Request') }}

@csrf
@if ($errors->has('subject'))

{{ $errors->first('subject') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
@if ($errors->has('admin_remarks'))

{{ $errors->first('admin_remarks') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection @section('js') @endsection