@extends('layouts.dashboard') @section('style') @endsection @section('content')
{{-- Breadcrumb --}} {{-- Alert --}} @if (session('success')) @elseif (session('error')) @endif {{-- Form Create Device --}}
@csrf
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.device.fields.user_helper') }}
@if($errors->has('serial_number'))
{{ $errors->first('serial_number') }}
@endif {{ trans('cruds.device.fields.serial_number_helper') }}
@if($errors->has('tags'))
{{ $errors->first('tags') }}
@endif {{ trans('cruds.device.fields.specification_helper') }}
@if($errors->has('lat'))
{{ $errors->first('lat') }}
@endif {{ trans('cruds.device.fields.lat_helper') }}
@if($errors->has('long'))
{{ $errors->first('long') }}
@endif {{ trans('cruds.device.fields.long_helper') }}
Click the button to scan device
Click the button to get coordinate
 
@endsection @section('script') @if(Auth::check()) @endif @endsection