@extends('admin.layouts.master') @section('title', 'Edit Appointment - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('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