@extends('admin.layouts.master') @section('title', 'Edit Appointment - Admin') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Edit Appointment') }} @endslot @slot('menu1') {{ __('Appointment') }} @endslot @slot('menu2') {{ __('Edit Appointment') }} @endslot @endcomponent
{{ __('Appointment') }}
@if($appoint->user->user_img != null || $appoint->user->user_img !='') @else User Image @endif
{{ __('User') }}:
{{ $appoint->user->fname }} {{ $appoint->user->lname }}
{{ __('Course') }}:
{{ $appoint->courses->title }}
{{ __('Title') }}:
{{ $appoint->title }}
{{ __('Detail') }}:
{{ $appoint->detail }}
{{ csrf_field() }} {{ method_field('PUT') }}

{{ csrf_field() }} {{ method_field('PUT') }}

@endsection @section('script') @endsection