File: /var/www/vhost/disk-apps/teamdemo.sports-crowd.com/resources/views/academy/coaches/edit.blade.php
@extends('modules.head') @section('contenido')
<h3>
<a class="ruta" class="" href="{{ url('/academy_coaches') }}">{{ Lang::get('messages.academy_coaches.title_list') }} </a>
<span class="separador-ruta">|</span>
<a class="ruta" class="" href="{{ url('/academy_coaches/edit/' . $object->id) }}">
{{ Lang::get('messages.academy_coaches.title_edit') }}
</a>
</h3>
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">{{ Lang::get('messages.academy_coaches.title_edit') }}</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<form method="POST" id="form_edit" object_id="{{ $object->id }}">
@include('academy.coaches.form')
@include('layouts.button_edit')
</form>
</div>
<!-- /.box-body -->
</div>
@endsection