@extends('layouts.general')
@section('layouts.header')
@include('layouts.header')
@stop
@section('optionalCss')
@stop
@section('content')
{{--Validator Error From Server--}}
@if($errors->any())
×
@foreach ($errors->all() as $error)
- {{$error}}
@endforeach
@endif
{{--End Validator Error From Server--}}
{{--Begin validate message--}}
{{--End validate message--}}
{{--Custom validate msg--}}
@foreach (['danger', 'warning', 'success', 'info'] as $msg)
@if(Session::has('alert-' . $msg))
{{ Session::get('alert-' . $msg) }} ×
@endif
@endforeach
{{--End Custom validate msg--}}
チームの登録・編集
@include('team.partial.team_modify')
@if(!$isRegister)
@include('team.partial.team_member_add_modal')
@endif
@stop
@section('layouts.footer')
@include ('layouts.footer')
@stop
@section('optionalJs')
@append