@extends('Frontend.Layouts.modal') @section('title') {{ trans('global.import') }} @stop @section('body') {!!Form::open(['route' => 'admin.device_type_imei.import', 'method' => 'POST'])!!}
{!!Form::label('device_type_id', trans('validation.attributes.device_type_id').':')!!} {!!Form::select('device_type_id', $device_types->pluck('title', 'id'), null, ['class' => 'form-control'])!!}
{!! Form::label('file', 'CSV ' . trans('validation.attributes.file').'*:') !!} {!! Form::file('file', ['class' => 'form-control']) !!}
{!! Form::close() !!}
example.csv
@stop @section('buttons') @stop