@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
{{-- Instructions Section --}}
{{ _trans('common.Instructions for Bulk User Upload') }}
  • {{ _trans('common.Make sure the file is in CSV format.') }}
  • {{ _trans('common.Required fields:') }} {{ _trans('common.Shift') }}, {{ _trans('common.Start Time') }}, {{ _trans('common.End Time') }}
{{-- Sample File Download Button on the right --}}
@if ($errors->has('errors')) @endif @if (session('success')) @endif
@csrf
@error('file') {{ $message }} @enderror
{{-- Submit button --}}
@endsection