{{-- extend layout --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Admin Working Time') {{-- vendor styles --}} @section('vendor-style') @endsection {{-- page content --}} @section('content')
Merchant Working Time
@csrf
@if ($errors->has('opening_time'))
{{ $errors->first('opening_time') }}
@endif
@if ($errors->has('closing_time'))
{{ $errors->first('closing_time') }}
@endif
@if ($errors->has('days'))
{{ $errors->first('days') }}
@endif
Cancel
@endsection {{-- vendor script --}} @section('vendor-script') @endsection {{-- page script --}} @section('page-script') @endsection