@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Working Day Edit Form') {{-- vendor style --}} @section('vendor-style') @endsection {{-- page content --}} @section('content')
{{--

Merchant Working Time Edit for - {{ $merchantWorkingTime->merchant->name }} in {{ $merchantWorkingTime->merchantWorkingDay->day }}

--}}
@csrf @method('PUT')
@if ($errors->has('opening_time'))
{{ $errors->first('opening_time') }}
@endif
@if ($errors->has('closing_time'))
{{ $errors->first('closing_time') }}
@endif
@endsection {{-- vendor script --}} @section('vendor-script') @endsection {{-- page script --}} @section('page-script') @endsection