@extends('adminlte::page') @section('title', 'Import Data ' . Config::get('adminlte.title')) @section('content_header')

Import Data

@stop @section('content') {{--Show message if any--}} @include('layouts.flash-message')

Import

{!! html()->form('POST', route($data->form_action))->attribute('autocomplete', 'off')->acceptsFiles()->open() !!} {!! html()->hidden('id', $data->id)->id('id') !!}
Import Data
{!! html()->file('import')->class('custom-file-input')->id('import')->required() !!} {!! html()->label('Choose file')->class('custom-file-label')->for('customFile') !!} Please upload the csv File
Instructions
{!! html()->button('Show Instructions')->type('button')->class('btn btn-info collapsed')->attribute('data-toggle', 'collapse')->attribute('data-target', '#instructions')->attribute('aria-expanded', 'false') !!}
{!! html()->form()->close() !!}
@stop @section('css') @stop @section('js') @stop