@extends('layouts.master') @section('title') {{isset($exercise) ? 'Edit exercise': 'Add exercise'}} @endsection @section('css') @endsection @section('page-header') @endsection @section('content')
@csrf
@if ($errors->has('title'))

{{$errors->first('title')}}

@endif
@if ($errors->has('overview'))

{{$errors->first('overview')}}

@endif
@if ($errors->has('description'))

{{$errors->first('description')}}

@endif
@if ($errors->has('difficulty'))

{{$errors->first('difficulty')}}

@endif
image Upload
@if (isset($exercise))
{{$exercise->title}}
@endif
@if ($errors->has('main_image'))

{{$errors->first('main_image')}}

@endif
@isset($exercise)
@csrf
Video Upload
@if (isset($exercise->player_embed_url))
@endif
@if ($errors->has('video'))

{{$errors->first('video')}}

@endif
@endisset @endsection @section('js') @endsection