@extends('frontend.layouts.app') @section('content')

Doctor Video Upload

@if ($errors->any())
@endif {!! html()->form('POST', route('doctors.videoupdate', $doctor->id))->acceptsFiles()->attribute('enctype', 'multipart/form-data')->open() !!} @csrf @method('PUT')

{{$doctor->doctorname}}

{{$doctor->designation}}

@php if($doctor->speciality == 'Other'){ $doctor->speciality = 'Cp'; } @endphp
{!! 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