@extends('admin.layouts.master') @section('content')

{{ __('Add') }} {{ $group->name }} {{ __('CallToActions') }}

@csrf
@if ($errors->has('title'))

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

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

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

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

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

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

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

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

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

@endif
@endsection