@extends('frontend.layouts.app')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! html()->form('POST', route('doctors.videoupdate', $doctor->id))->acceptsFiles()->attribute('enctype', 'multipart/form-data')->open() !!}
@csrf
@method('PUT')
{!! html()->select(
'device',
[
'' => 'Select Device',
'mobile' => 'Mobile',
'tablet' => 'Tablet',
],
old('device',$doctor->device),
)->class('form-control')->required() !!}
Only MP4/MOV/M4a format is allowed. Max size: 500MB
{!! html()->submit('Update Doctor')->class('btn btn-lg btn-default shadow-sm btn-rounded') !!}
{!! html()->form()->close() !!}
@endsection
@section('footer')
@endsection